/* CSS reset */
*{
    margin: 0;
    padding: 0;

}
html{
    scroll-behavior: smooth;
}

/* CSS variables */
:root{
    --navbar-height: 59px;

}

/* Navigation bar  */
#navbar{
    display: flex;
    align-items: center;
    position: sticky;
    top: 0px;

}

/*navigation barr: Logo and Image */
#logo{
    margin: 10px 34px;

}
#logo img{
    height: 69px;
    margin: 15px 12px

}
/* navigation bar list styling */


#navbar  ul{
    display: flex; 
    /* makes them in one4 row */
    font-family: 'Spline Sans', sans-serif;

}
#navbar::before{
    content: "";
    background-color: black;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.7;
}
#navbar ul li{
    /* color: white; */
    list-style: none;
    font-size: 1.3rem;
}
#navbar ul li a{
    color: white;
    display: block; 
    /* used it in a cuz it can make us use hover property by covering all the box */
    padding: 3px 22px;
    border-radius: 20px;
    text-decoration: none;

}
#navbar ul li a:hover{
    color: black;
   background-color: white;

}
/* Home Section  */
#home{
    display: flex;
    flex-direction: column;
    padding: 3px 200px;
    justify-content: center;
    align-items: center;
    height: 550px;

}
#home::before{
    content: "";
    background: url('../img/bg5.webp') no-repeat center center/cover;
     /* no-repeat center center/cover; */
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.98 ;


}
#home h1{
    color: rgb(255, 255, 255);
    text-align: center;
    font-family: 'Orelega One', cursive;
    font-size: 5rem;
}
#home p{
    color: rgb(250, 248, 248);
    text-align: center;
    font-size: 3rem;
    font-family: 'Cairo', sans-serif;
}
/* Services Section */
 #services-container{
    background-color: rgb(0, 0, 0);
}
#services{
    margin: 34px;
    display: flex; 
    margin-bottom: 0px;
    padding-bottom: 20px;
  

}
#services-container h1{
    color: white;
}
#services .box{
    /* border: 2px solid brown; */
    padding: 34px;
    margin: 25px 55px;
    border-radius: 23px;
    background: rgb(243, 246, 252);
    margin-bottom: 20px;


}
#services .box img{
    height: 180px;
    width: 280px;
    margin: auto;
    display: block;
    border-radius: 15px;
}
#services .box p{
    font-family: 'Spline Sans', sans-serif;
}
/* CTrendin restaunts clients Section */
#client-section{

    position: relative;
}
#client-section::before{
    content: "";
    position: absolute;
    background: url('../img/contact3.jpg')  no-repeat center center/cover;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.8;
}
#clients{
    display: flex;
    justify-content: center;
    align-items: center;


}
.client-item{
    padding: 34px;
}
#clients img{
    height: 124px;
    border-radius: 23px;
}


/* Contact Section */
#contact{
    position: relative;


}
#contact::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.95;
    background: url(../img/contact4.jpg)  no-repeat center center/cover;
    /* no-repeat center center/cover; */

}
#contact-box{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 34px;

}



#contact-box form{
    width: 40%;
}
#contact-box label{
    font-size: 1.3rem;
    font-family: 'Spline Sans', sans-serif;
}
#contact-box input,
#contact-box textarea{
    width: 100%;
    padding: 0.5rem;
    border-radius: 9px;
    font-size: 1.1rem;
}
#contact{
    color: white;
}
footer{
    background: black;
    color: white;
    padding: 9px 20px;
    height: 50px;

}
/* Utility Classes */

.primary{
    font-size: 3.8rem;
    padding: 12px;
    font-family: 'Spline Sans', sans-serif;

}
.h-secondary{
    font-size: 2.3rem;
    padding: 12px;
    font-family: 'Spline Sans', sans-serif;
}
.btn{
 padding: 6px 20px;
 border: 2px solid white;
 background-color: brown;
 border-radius: 10px;
 color: white;
 margin: 17px;
 font-size: 1.5rem;
cursor: pointer;
 
}
.center{
    text-align: center;
}
.height{
    margin-top: 55px;
}
.services-container{
    margin-top: 200px;
}